Amazon RDS
https://gyazo.com/416f2a78f0d69d5663ab360dd9a74c08
いろいろえらべる
スナップショットから復元する
code:tf
resource "aws_db_instance" "example" {
identifier_prefix = "terraform-up-and-runnning"
engine = "mysql"
allocated_storage = 10
instance_class = "db.t2.micro"
skip_final_snapshot = true
db_name = "example_database"
username = "???"
password = "???"
}